home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 38 / Amiga Format CD38 (1999-03-15)(Future Publishing)(GB)(Track 1 of 3)[!][issue 1999-04].iso / -screenplay- / -commercial- / napalmdemo_v1.1 / preparelibs < prev    next >
Text File  |  1999-02-08  |  643b  |  32 lines

  1.  
  2. if not exists "T:"
  3.  assign t: ram:
  4. endif
  5.  
  6. assign Napalm: ""
  7.  
  8. set type `requestchoice title="Request" body="Please select graphics enviroment:" gadgets=AGA-Chipset|CyberGFX|Picasso96`
  9.  
  10. echo "Adding NAPALM libraries to system..." 
  11. echo " "
  12.  
  13. copy Napalm:libs to libs: all quiet
  14. delete libs:rtg/#? all quiet
  15.  
  16.  
  17. if eq $type "1"
  18.  copy Napalm:libs/rtg/rtgAMI.library to libs:rtg/
  19.  echo "AGA library installed..."
  20. endif
  21.  
  22. if eq $type "2"
  23.  copy Napalm:libs/rtg/rtgCGX.library to libs:rtg/
  24.  echo "CGX library installed..."
  25. endif
  26.  
  27. if eq $type "0"
  28.  copy Napalm:libs/rtg/rtgP96.library to libs:rtg/
  29.  echo "P96 library installed..."
  30. endif
  31.  
  32. echo "Finished!!!"